d03da117a1112649c792b3fae82070478d84da37,omniNotes/src/main/java/it/feio/android/omninotes/db/DbHelper.java,DbHelper,getInstance,#,99

Before Change



	public static synchronized DbHelper getInstance() {
        if (instance == null) {
            instance = new DbHelper(OmniNotes.getAppContext());
        }
        return instance;
    }

After Change




	public static synchronized DbHelper getInstance() {
		return getInstance(OmniNotes.getAppContext());
	}

	public static synchronized DbHelper getInstance(Context context) {